home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / mgr / vdimgr.zoo / contrib / mgrterm / makefile.cgcc next >
Encoding:
Makefile  |  1993-03-16  |  468 b   |  22 lines

  1. CC = cgcc
  2. MINTDIR = /net/acae127/home/bammi/atari/mint
  3. MINTINC = $(MINTDIR)/mintlib/include
  4. MGRDIR = /net/acae127/home/bammi/atari/cross-gcc/mgrlib
  5. MGRINC = $(MGRDIR)
  6.  
  7. CFLAGS = -O -mshort -mint -I$(MGRINC) -fomit-frame-pointer \
  8.  -Wstrict-prototypes
  9.  
  10. mgrterm.prg : mgrterm.o
  11.     $(CC) -mint -mshort -o mgrterm.prg  mgrterm.o -lmgr16 -v -s
  12.  
  13. mgrterm.o: mgrterm.c proto.h
  14. proto.h: mgrterm.c
  15.     mkptypes $^ > $@
  16.  
  17.     
  18. clean:
  19.     rm -f *.o
  20. realclean: clean
  21.     rm -f mgrterm.prg proto.h
  22.